home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 3 / ct-rom iiib.zip / ct-rom iiib / WINDOWS / DIVERSEN / WINE02BX / EMACS.10 < prev    next >
Text File  |  1993-03-28  |  46KB  |  1,058 lines

  1. Info file ../info/emacs, produced by Makeinfo, -*- Text -*- from input
  2. file lemacs.tex.
  3.  
  4.    This file documents the GNU Emacs editor.
  5.  
  6.    Copyright (C) 1985, 1986, 1988 Richard M. Stallman.  Copyright (C)
  7. 1991, 1992 Lucid, Inc.
  8.  
  9.    Permission is granted to make and distribute verbatim copies of
  10. this manual provided the copyright notice and this permission notice
  11. are preserved on all copies.
  12.  
  13.    Permission is granted to copy and distribute modified versions of
  14. this manual under the conditions for verbatim copying, provided also
  15. that the sections entitled "The GNU Manifesto", "Distribution" and "GNU
  16. General Public License" are included exactly as in the original, and
  17. provided that the entire resulting derived work is distributed under
  18. the terms of a permission notice identical to this one.
  19.  
  20.    Permission is granted to copy and distribute translations of this
  21. manual into another language, under the above conditions for modified
  22. versions, except that the sections entitled "The GNU Manifesto",
  23. "Distribution" and "GNU General Public License" may be included in a
  24. translation approved by the author instead of in the original English.
  25.  
  26. 
  27. File: emacs,  Node: Loading,  Next: Compiling Libraries,  Prev: Lisp Libraries,  Up: Lisp Libraries
  28.  
  29. Loading Libraries
  30. -----------------
  31.  
  32. `M-x load-file FILE'
  33.      Load the file FILE of Lisp code.
  34.  
  35. `M-x load-library LIBRARY'
  36.      Load the library named LIBRARY.
  37.  
  38. `M-x locate-library LIBRARY &optional NOSUFFIX'
  39.      Show the full path name of Emacs library `library'.
  40.  
  41.    To execute a file of Emacs Lisp, use `M-x load-file'.  This command
  42. reads the file name you provide in the minibuffer, then executes the
  43. contents of that file as Lisp code.  It is not necessary to visit the
  44. file first; in fact, this command reads the file as found on disk, not
  45. the text in an Emacs buffer.
  46.  
  47.    Once a file of Lisp code is installed in the Emacs Lisp library
  48. directories, users can load it using `M-x load-library'.  Programs can
  49. load it by calling `load-library', or with `load', a more primitive
  50. function that is similar but accepts some additional arguments.
  51.  
  52.    `M-x load-library' differs from `M-x load-file' in that it searches
  53. a sequence of directories and tries three file names in each
  54. directory.  The three names are: first, the specified name with `.elc'
  55. appended; second, the name with `.el' appended; third, the specified
  56. name alone.  A `.elc' file would be the result of compiling the Lisp
  57. file into byte code;  if possible, it is loaded in preference to the
  58. Lisp file itself because the compiled file loads and runs faster.
  59.  
  60.    Because the argument to `load-library' is usually not in itself a
  61. valid file name, file name completion is not available.  In fact, when
  62. using this command, you usually do not know exactly what file name
  63. will be used.
  64.  
  65.    The sequence of directories searched by `M-x load-library' is
  66. specified by the variable `load-path', a list of strings that are
  67. directory names.  The elements of this list may not begin with "`~'",
  68. so you must call `expand-file-name' on them before adding them to the
  69. list.  The default value of the list contains the directory where the
  70. Lisp code for Emacs itself is stored.  If you have libraries of your
  71. own, put them in a single directory and add that directory to
  72. `load-path'.  `nil' in this list stands for the current default
  73. directory, but it is probably not a good idea to put `nil' in the
  74. list.  If you start wishing that `nil' were in the list, you should
  75. probably use `M-x load-file' for this case.
  76.  
  77.    The variable is initialized by the EMACSLOADPATH environment
  78. variable. If no value is specified, the variable takes the default
  79. value specified in the file `paths.h' when Emacs was built. If a path
  80. isn't specified in `paths.h', a default value is obtained from the
  81. file system, near the directory in which the Emacs executable resides.
  82.  
  83.    `M-x locate-library' searches the directories in `load-path' like
  84. `M-x load-library' to find the file that `M-x load-library' would
  85. load.  If the optional second argument NOSUFFIX is non-`nil', the
  86. suffixes `.elc' or `.el' are not added to the specified name LIBRARY
  87. (a la calling load instead of load-library).
  88.  
  89.    You often do not have to give any command to load a library,
  90. because the commands defined in the library are set up to "autoload"
  91. that library.  Running any of those commands causes `load' to be
  92. called to load the library; this replaces the autoload definitions
  93. with the real ones from the library.
  94.  
  95.    If autoloading a file does not finish, either because of an error or
  96. because of a `C-g' quit, all function definitions made by the file are
  97. undone automatically.  So are any calls to `provide'.  As a
  98. consequence, the entire file is loaded a second time if you use one of
  99. the autoloadable commands again.  This prevents problems when the
  100. command is no longer autoloading but works incorrectly because the file
  101. was only partially loaded.  Function definitions are undone only for
  102. autoloading; explicit calls to `load' do not undo anything if loading
  103. is not completed.
  104.  
  105.    The variable `after-load-alist' takes an alist of expressions to be
  106. evalled when particular files are loaded.  Each element looks like
  107. `(FILENAME forms...)'.  When load is run and the filename argument is
  108. FILENAME, the forms in the corresponding element are executed at the
  109. end of loading.
  110.  
  111.    FILENAME must match exactly.  Normally FILENAME is the name of a
  112. library, with no directory specified, since that is how load is
  113. normally called.  An error in `forms' does not undo the load, but does
  114. prevent execution of the rest of the `forms'.
  115.  
  116. 
  117. File: emacs,  Node: Compiling Libraries,  Next: Mocklisp,  Prev: Loading,  Up: Lisp Libraries
  118.  
  119. Compiling Libraries
  120. -------------------
  121.  
  122.    Emacs Lisp code can be compiled into byte-code which loads faster,
  123. takes up less space when loaded, and executes faster.
  124.  
  125. `M-x batch-byte-compile'
  126.      Run byte-compile-file on the files remaining on the command line.
  127.  
  128. `M-x byte-compile-buffer &optional BUFFER'
  129.      Byte-compile and evaluate contents of BUFFER (default is current
  130.      buffer).
  131.  
  132. `M-x byte-compile-file'
  133.      Compile a file of Lisp code named FILENAME into a file of byte
  134.      code.
  135.  
  136. `M-x byte-compile-and-load-file FILENAME'
  137.      Compile a file of Lisp code named FILENAME into a file of byte
  138.      code and load it.
  139.  
  140. `M-x byte-recompile-directory DIRECTORY'
  141.      Recompile every `.el' file in DIRECTORY that needs recompilation.
  142.  
  143. `M-x disassemble'
  144.      Print disassembled code for OBJECT on (optional) STREAM.
  145.  
  146. `M-x make-obsolete FUNCTION NEW'
  147.      Make the byte-compiler warn that FUNCTION is obsolete and NEW
  148.      should be used instead.
  149.  
  150.    `byte-compile-file' creates a byte-code compiled file from an
  151. Emacs-Lisp source file.  The default argument for this function is the
  152. file visited in the current buffer.  The function reads the specified
  153. file, compiles it into byte code, and writes an output file whose name
  154. is made by appending `c' to the input file name.  Thus, the file
  155. `rmail.el' would be compiled into `rmail.elc'. To compile a file of
  156. Lisp code named FILENAME into a file of byte code and then load it,
  157. use `byte-compile-and-load-file'. To compile and evaluate Lisp code in
  158. a given buffer, use `byte-compile-buffer'.
  159.  
  160.    To recompile all changed Lisp files in a directory, use `M-x
  161. byte-recompile-directory'.  Specify just the directory name as an
  162. argument.  Each `.el' file that has been byte-compiled before is
  163. byte-compiled again if it has changed since the previous compilation. 
  164. A numeric argument to this command tells it to offer to compile each
  165. `.el' file that has not been compiled yet.  You must answer `y' or `n'
  166. to each offer.
  167.  
  168.    You can use the function `batch-byte-compile' to invoke Emacs
  169. non-interactively from the shell to do byte compilation.  When you use
  170. this function, the files to be compiled are specified with command-line
  171. arguments.  Use a shell command of the form
  172.  
  173.      emacs -batch -f batch-byte-compile FILES...
  174.  
  175.    Directory names may also be given as arguments; in that case,
  176. `byte-recompile-directory' is invoked on each such directory. 
  177. `batch-byte-compile' uses all remaining command-line arguments as file
  178. or directory names, then kills the Emacs process.
  179.  
  180.    `M-x disassemble' explains the result of byte compilation.  Its
  181. argument is a function name.  It displays the byte-compiled code in a
  182. help window in symbolic form, one instruction per line.  If the
  183. instruction refers to a variable or constant, that is shown too.
  184.  
  185. 
  186. File: emacs,  Node: Mocklisp,  Prev: Compiling Libraries,  Up: Lisp Libraries
  187.  
  188. Converting Mocklisp to Lisp
  189. ---------------------------
  190.  
  191.    GNU Emacs can run Mocklisp files by converting them to Emacs Lisp
  192. first.  To convert a Mocklisp file, visit it and then type `M-x
  193. convert-mocklisp-buffer'.  Then save the resulting buffer of Lisp file
  194. in a file whose name ends in `.el' and use the new file as a Lisp
  195. library.
  196.  
  197.    You cannot currently byte-compile converted Mocklisp code.  The
  198. reason is that converted Mocklisp code uses some special Lisp features
  199. to deal with Mocklisp's incompatible ideas of how arguments are
  200. evaluated and which values signify "true" or "false".
  201.  
  202. 
  203. File: emacs,  Node: Lisp Eval,  Next: Lisp Debug,  Prev: Lisp Libraries,  Up: Running
  204.  
  205. Evaluating Emacs-Lisp Expressions
  206. =================================
  207.  
  208.    Lisp programs intended to be run in Emacs should be edited in
  209. Emacs-Lisp mode; this will happen automatically for file names ending
  210. in `.el'.  By contrast, Lisp mode itself should be used for editing
  211. Lisp programs intended for other Lisp systems.  Emacs-Lisp mode can be
  212. selected with the command `M-x emacs-lisp-mode'.
  213.  
  214.    For testing of Lisp programs to run in Emacs, it is useful to be
  215. able to evaluate part of the program as it is found in the Emacs
  216. buffer.  For example, if you change the text of a Lisp function
  217. definition, and then evaluate the definition, Emacs installs the
  218. change for future calls to the function.  Evaluation of Lisp
  219. expressions is also useful in any kind of editing task for invoking
  220. non-interactive functions (functions that are not commands).
  221.  
  222. `M-ESC'
  223.      Read a Lisp expression in the minibuffer, evaluate it, and print
  224.      the value in the minibuffer (`eval-expression').
  225.  
  226. `C-x C-e'
  227.      Evaluate the Lisp expression before point, and print the value in
  228.      the minibuffer (`eval-last-sexp').
  229.  
  230. `C-M-x'
  231.      Evaluate the defun containing point or after point, and print the
  232.      value in the minibuffer (`eval-defun').
  233.  
  234. `M-x eval-region'
  235.      Evaluate all the Lisp expressions in the region.
  236.  
  237. `M-x eval-current-buffer'
  238.      Evaluate all the Lisp expressions in the buffer.
  239.  
  240.    `M-ESC' (`eval-expression') is the most basic command for
  241. evaluating a Lisp expression interactively.  It reads the expression
  242. using the minibuffer, so you can execute any expression on a buffer
  243. regardless of what the buffer contains.  When evaluation is complete,
  244. the current buffer is once again the buffer that was current when
  245. `M-ESC' was typed.
  246.  
  247.    `M-ESC' can easily confuse users, especially on keyboards with
  248. autorepeat where it can result from holding down the ESC key for too
  249. long.  Therefore, `eval-expression' is normally a disabled command. 
  250. Attempting to use this command asks for confirmation and gives you the
  251. option of enabling it; once you enable the command, you are no longer
  252. required to confirm.  *Note Disabling::.
  253.  
  254.    In Emacs-Lisp mode, the key `C-M-x' is bound to the function
  255. `eval-defun', which parses the defun containing point or following
  256. point as a Lisp expression and evaluates it.  The value is printed in
  257. the echo area.  This command is convenient for installing in the Lisp
  258. environment changes that you have just made in the text of a function
  259. definition.
  260.  
  261.    The command `C-x C-e' (`eval-last-sexp') performs a similar job but
  262. is available in all major modes, not just Emacs-Lisp mode.  It finds
  263. the sexp before point, reads it as a Lisp expression, evaluates it, and
  264. prints the value in the echo area.  It is sometimes useful to type in
  265. an expression and then, with point still after it, type `C-x C-e'.
  266.  
  267.    If `C-M-x' or `C-x C-e' are given a numeric argument, they print
  268. the value by inserting it into the current buffer at point, rather
  269. than in the echo area.  The argument value does not matter.
  270.  
  271.    The most general command for evaluating Lisp expressions from a
  272. buffer is `eval-region'.  `M-x eval-region' parses the text of the
  273. region as one or more Lisp expressions, evaluating them one by one. 
  274. `M-x eval-current-buffer' is similar but evaluates the entire buffer. 
  275. This is a reasonable way to install the contents of a file of Lisp
  276. code that you are just ready to test.  After finding and fixing a bug,
  277. use `C-M-x' on each function that you change, to keep the Lisp world
  278. in step with the source file.
  279.  
  280. 
  281. File: emacs,  Node: Lisp Debug,  Next: Lisp Interaction,  Prev: Lisp Eval,  Up: Running
  282.  
  283. The Emacs-Lisp Debugger
  284. =======================
  285.  
  286.    GNU Emacs contains a debugger for Lisp programs executing inside it. 
  287. This debugger is normally not used; many commands frequently get Lisp
  288. errors when invoked in inappropriate contexts (such as `C-f' at the
  289. end of the buffer) and it would be unpleasant to enter a special
  290. debugging mode in this case.  When you want to make Lisp errors invoke
  291. the debugger, you must set the variable `debug-on-error' to non-`nil'.
  292.  Quitting with `C-g' is not considered an error, and `debug-on-error'
  293. has no effect on the handling of `C-g'.  However, if you set
  294. `debug-on-quit' non-`nil', `C-g' will invoke the debugger.  This can
  295. be useful for debugging an infinite loop; type `C-g' once the loop has
  296. had time to reach its steady state.  `debug-on-quit' has no effect on
  297. errors.
  298.  
  299.    You can make Emacs enter the debugger when a specified function is
  300. called, or at a particular place in Lisp code.  Use `M-x
  301. debug-on-entry' with argument FUN-NAME to have Emacs enter the
  302. debugger as soon as FUN-NAME is called.Use `M-x cancel-debug-on-entry'
  303. to make the function stop entering the debugger when called. 
  304. (Redefining the function also does this.)  To enter the debugger from
  305. some other place in Lisp code, you must insert the expression
  306. `(debug)' there and install the changed code with `C-M-x'.  *Note Lisp
  307. Eval::.
  308.  
  309.    When the debugger is entered, it displays the previously selected
  310. buffer in one window and a buffer named `*Backtrace*' in another
  311. window.  The backtrace buffer contains one line for each level of Lisp
  312. function execution currently going on.  At the beginning of the buffer
  313. is a message describing the reason that the debugger was invoked, for
  314. example, an error message if it was invoked due to an error.
  315.  
  316.    The backtrace buffer is read-only, and is in Backtrace mode, a
  317. special major mode in which letters are defined as debugger commands. 
  318. The usual Emacs editing commands are available; you can switch windows
  319. to examine the buffer that was being edited at the time of the error,
  320. and you can switch buffers, visit files, and perform any other editing
  321. operations.  However, the debugger is a recursive editing level (*note
  322. Recursive Edit::.); it is a good idea to return to the backtrace
  323. buffer and explictly exit the debugger when you don't want to use it
  324. any more.  Exiting the debugger kills the backtrace buffer.
  325.  
  326.    The contents of the backtrace buffer show you the functions that are
  327. executing and the arguments that were given to them.  It also allows
  328. you to specify a stack frame by moving point to the line describing
  329. that frame.  The frame whose line point is on is considered the
  330. "current frame".  Some of the debugger commands operate on the current
  331. frame.  Debugger commands are mainly used for stepping through code one
  332. expression at a time.  Here is a list of them:
  333.  
  334. `c'
  335.      Exit the debugger and continue execution.  In most cases,
  336.      execution of the program continues as if the debugger had never
  337.      been entered (aside from the effect of any variables or data
  338.      structures you may have changed while inside the debugger).  This
  339.      includes entry to the debugger due to function entry or exit,
  340.      explicit invocation, and quitting or certain errors.  Most errors
  341.      cannot be continued; trying to continue an error usually causes
  342.      the same error to occur again.
  343.  
  344. `d'
  345.      Continue execution, but enter the debugger the next time a Lisp
  346.      function is called.  This allows you to step through the
  347.      subexpressions of an expression, and see what the subexpressions
  348.      do and what values they compute.
  349.  
  350.      When you enter the debugger this way, Emacs flags the stack frame
  351.      for the function call from which you entered.  The same function
  352.      is then called when you exit the frame.  To cancel this flag, use
  353.      `u'.
  354.  
  355. `b'
  356.      Set up to enter the debugger when the current frame is exited. 
  357.      Frames that invoke the debugger on exit are flagged with stars.
  358.  
  359. `u'
  360.      Don't enter the debugger when the current frame is exited.  This
  361.      cancels a `b' command on a frame.
  362.  
  363. `e'
  364.      Read a Lisp expression in the minibuffer, evaluate it, and print
  365.      the value in the echo area.  This is equivalent to the command
  366.      `M-ESC', except that `e' is not normally disabled like `M-ESC'.
  367.  
  368. `q'
  369.      Terminate the program being debugged; return to top-level Emacs
  370.      command execution.
  371.  
  372.      If the debugger was entered due to a `C-g' but you really want to
  373.      quit, not to debug, use the `q' command.
  374.  
  375. `r'
  376.      Return a value from the debugger.  The value is computed by
  377.      reading an expression with the minibuffer and evaluating it.
  378.  
  379.      The value returned by the debugger makes a difference when the
  380.      debugger was invoked due to exit from a Lisp call frame (as
  381.      requested with `b'); then the value specified in the `r' command
  382.      is used as the value of that frame.
  383.  
  384.      The debugger's return value also matters with many errors.  For
  385.      example, `wrong-type-argument' errors will use the debugger's
  386.      return value instead of the invalid argument; `no-catch' errors
  387.      will use the debugger value as a throw tag instead of the tag
  388.      that was not found.  If an error was signaled by calling the Lisp
  389.      function `signal', the debugger's return value is returned as the
  390.      value of `signal'.
  391.  
  392. 
  393. File: emacs,  Node: Lisp Interaction,  Next: External Lisp,  Prev: Lisp Debug,  Up: Running
  394.  
  395. Lisp Interaction Buffers
  396. ========================
  397.  
  398.    The buffer `*scratch*', which is selected when Emacs starts up, is
  399. provided for evaluating Lisp expressions interactively inside Emacs. 
  400. Both the expressions you evaluate and their output goes in the buffer.
  401.  
  402.    The `*scratch*' buffer's major mode is Lisp Interaction mode, which
  403. is the same as Emacs-Lisp mode except for one command, LFD.  In
  404. Emacs-Lisp mode, LFD is an indentation command.  In Lisp Interaction
  405. mode, LFD is bound to `eval-print-last-sexp'.  This function reads the
  406. Lisp expression before point, evaluates it, and inserts the value in
  407. printed representation before point.
  408.  
  409.    The way to use the `*scratch*' buffer is to insert Lisp expressions
  410. at the end, ending each one with LFD so that it will be evaluated. 
  411. The result is a complete typescript of the expressions you have
  412. evaluated and their values.
  413.  
  414.    The rationale for this feature is that Emacs must have a buffer
  415. when it starts up, but that buffer is not useful for editing files
  416. since a new buffer is made for every file that you visit.  The Lisp
  417. interpreter typescript is the most useful thing I can think of for the
  418. initial buffer to do.  `M-x lisp-interaction-mode' will put any buffer
  419. in Lisp Interaction mode.
  420.  
  421. 
  422. File: emacs,  Node: External Lisp,  Prev: Lisp Interaction,  Up: Running
  423.  
  424. Running an External Lisp
  425. ========================
  426.  
  427.    Emacs has facilities for running programs in other Lisp systems. 
  428. You can run a Lisp process as an inferior of Emacs, and pass
  429. expressions to it to be evaluated.  You can also pass changed function
  430. definitions directly from the Emacs buffers in which you edit the Lisp
  431. programs to the inferior Lisp process.
  432.  
  433.    To run an inferior Lisp process, type `M-x run-lisp'.  This runs the
  434. program named `lisp', the same program you would run by typing `lisp'
  435. as a shell command, with both input and output going through an Emacs
  436. buffer named `*lisp*'.  In other words, any "terminal output" from
  437. Lisp will go into the buffer, advancing point, and any "terminal
  438. input" for Lisp comes from text in the buffer.  To give input to Lisp,
  439. go to the end of the buffer and type the input, terminated by RET.  The
  440. `*lisp*' buffer is in Inferior Lisp mode, which has all the special
  441. characteristics of Lisp mode and Shell mode (*note Shell Mode::.).
  442.  
  443.    Use Lisp mode to run the source files of programs in external Lisps. 
  444. You can select this mode with `M-x lisp-mode'.  It is used
  445. automatically for files whose names end in `.l' or `.lisp', as most
  446. Lisp systems usually expect.
  447.  
  448.    When you edit a function in a Lisp program you are running, the
  449. easiest way to send the changed definition to the inferior Lisp
  450. process is the key `C-M-x'.  In Lisp mode, this key runs the function
  451. `lisp-send-defun', which finds the defun around or following point and
  452. sends it as input to the Lisp process.  (Emacs can send input to any
  453. inferior process regardless of what buffer is current.)
  454.  
  455.    Contrast the meanings of `C-M-x' in Lisp mode (for editing programs
  456. to be run in another Lisp system) and Emacs-Lisp mode (for editing Lisp
  457. programs to be run in Emacs): in both modes it has the effect of
  458. installing the function definition that point is in, but the way of
  459. doing so is different according to where the relevant Lisp environment
  460. is found.  *Note Lisp Modes::.
  461.  
  462. 
  463. File: emacs,  Node: Abbrevs,  Next: Picture,  Prev: Running,  Up: Top
  464.  
  465. Abbrevs
  466. *******
  467.  
  468.    An "abbrev" is a word which "expands", if you insert it, into some
  469. different text.  Abbrevs are defined by the user to expand in specific
  470. ways.  For example, you might define `foo' as an abbrev expanding to
  471. `find outer otter'.  With this abbrev defined, you would be able to
  472. get `find outer otter ' into the buffer by typing `f o o SPC'.
  473.  
  474.    Abbrevs expand only when Abbrev mode (a minor mode) is enabled. 
  475. Disabling Abbrev mode does not cause abbrev definitions to be
  476. discarded, but they do not expand until Abbrev mode is enabled again. 
  477. The command `M-x abbrev-mode' toggles Abbrev mode; with a numeric
  478. argument, it turns Abbrev mode on if the argument is positive, off
  479. otherwise.  *Note Minor Modes::.  `abbrev-mode' is also a variable;
  480. Abbrev mode is on when the variable is non-`nil'.  The variable
  481. `abbrev-mode' automatically becomes local to the current buffer when
  482. it is set.
  483.  
  484.    Abbrev definitions can be "mode-specific"--active only in one major
  485. mode.  Abbrevs can also have "global" definitions that are active in
  486. all major modes.  The same abbrev can have a global definition and
  487. various mode-specific definitions for different major modes.  A mode
  488. specific definition for the current major mode overrides a global
  489. definition.
  490.  
  491.    You can define Abbrevs interactively during an editing session.  You
  492. can also save lists of abbrev definitions in files and reload them in
  493. later sessions.  Some users keep extensive lists of abbrevs that they
  494. load in every session.
  495.  
  496.    A second kind of abbreviation facility is called the "dynamic
  497. expansion".  Dynamic abbrev expansion happens only when you give an
  498. explicit command and the result of the expansion depends only on the
  499. current contents of the buffer.  *Note Dynamic Abbrevs::.
  500.  
  501. * Menu:
  502.  
  503. * Defining Abbrevs::  Defining an abbrev, so it will expand when typed.
  504. * Expanding Abbrevs:: Controlling expansion: prefixes, canceling expansion.
  505. * Editing Abbrevs::   Viewing or editing the entire list of defined abbrevs.
  506. * Saving Abbrevs::    Saving the entire list of abbrevs for another session.
  507. * Dynamic Abbrevs::   Abbreviations for words already in the buffer.
  508.  
  509. 
  510. File: emacs,  Node: Defining Abbrevs,  Next: Expanding Abbrevs,  Prev: Abbrevs,  Up: Abbrevs
  511.  
  512. Defining Abbrevs
  513. ================
  514.  
  515. `C-x +'
  516.      Define an abbrev to expand into some text before point
  517.      (`add-global-abbrev').
  518.  
  519. `C-x C-a'
  520.      Similar, but define an abbrev available only in the current major
  521.      mode (`add-mode-abbrev').
  522.  
  523. `C-x -'
  524.      Define a word in the buffer as an abbrev
  525.      (`inverse-add-global-abbrev').
  526.  
  527. `C-x C-h'
  528.      Define a word in the buffer as a mode-specific abbrev
  529.      (`inverse-add-mode-abbrev').
  530.  
  531. `M-x kill-all-abbrevs'
  532.      After this command, no abbrev definitions remain in effect.
  533.  
  534.    The usual way to define an abbrev is to enter the text you want the
  535. abbrev to expand to, position point after it, and type `C-x +'
  536. (`add-global-abbrev').  This reads the abbrev itself using the
  537. minibuffer, and then defines it as an abbrev for one or more words
  538. before point.  Use a numeric argument to say how many words before
  539. point should be taken as the expansion.  For example, to define the
  540. abbrev `foo' as in the example above, insert the text `find outer
  541. otter', then type 
  542. `C-u 3 C-x + f o o RET'.
  543.  
  544.    An argument of zero to `C-x +' means to use the contents of the
  545. region as the expansion of the abbrev being defined.
  546.  
  547.    The command `C-x C-a' (`add-mode-abbrev') is similar, but defines a
  548. mode-specific abbrev.  Mode specific abbrevs are active only in a
  549. particular major mode.  `C-x C-a' defines an abbrev for the major mode
  550. in effect at the time `C-x C-a' is typed.  The arguments work the same
  551. way they do for `C-x +'.
  552.  
  553.    If the text of an abbrev you want is already in the buffer instead
  554. of the expansion, use command `C-x -' (`inverse-add-global-abbrev')
  555. instead of `C-x +', or use `C-x C-h' (`inverse-add-mode-abbrev')
  556. instead of `C-x C-a'.  These commands are called "inverse" because
  557. they invert the meaning of the argument found in the buffer and the
  558. argument read using the minibuffer.
  559.  
  560.    To change the definition of an abbrev, just add the new definition.
  561.  You will be asked to confirm if the abbrev has a prior definition. 
  562. To remove an abbrev definition, give a negative argument to `C-x +' or
  563. `C-x C-a'.  You must choose the command to specify whether to kill a
  564. global definition or a mode-specific definition for the current mode,
  565. since those two definitions are independent for one abbrev.
  566.  
  567.    `M-x kill-all-abbrevs' removes all existing abbrev definitions.
  568.  
  569. 
  570. File: emacs,  Node: Expanding Abbrevs,  Next: Editing Abbrevs,  Prev: Defining Abbrevs,  Up: Abbrevs
  571.  
  572. Controlling Abbrev Expansion
  573. ============================
  574.  
  575.    An abbrev expands whenever it is in a buffer just before point and
  576. you type and a self-inserting punctuation character (SPC, comma,
  577. etc.).  Most often an abbrev is used by inserting the abbrev followed
  578. by punctuation.
  579.  
  580.    Abbrev expansion preserves case; thus, `foo' expands into `find
  581. outer otter'; `Foo' into `Find outer otter', and `FOO' into `FIND
  582. OUTER OTTER' or `Find Outer Otter' according to the variable
  583. `abbrev-all-caps' (a non-`nil' value chooses the first of the two
  584. expansions).
  585.  
  586.    Two commands are available to control abbrev expansion:
  587.  
  588. `M-''
  589.      Separate a prefix from a following abbrev to be expanded
  590.      (`abbrev-prefix-mark').
  591.  
  592. `C-x ''
  593.      Expand the abbrev before point (`expand-abbrev').  This is
  594.      effective even when Abbrev mode is not enabled.
  595.  
  596. `M-x unexpand-abbrev'
  597.      Undo last abbrev expansion.
  598.  
  599. `M-x expand-region-abbrevs'
  600.      Expand some or all abbrevs found in the region.
  601.  
  602.    You may wish to expand an abbrev with a prefix attached.  For
  603. example, if `cnst' expands into `construction', you may want to use it
  604. to enter `reconstruction'.  It does not work to type `recnst', because
  605. that is not necessarily a defined abbrev.  Instead, you can use the
  606. command `M-'' (`abbrev-prefix-mark') between the prefix `re' and the
  607. abbrev `cnst'.  First, insert `re'.  Then type `M-''; this inserts a
  608. minus sign in the buffer to indicate that it has done its work.  Then
  609. insert the abbrev `cnst'.  The buffer now contains `re-cnst'.  Now
  610. insert a punctuation character to expand the abbrev `cnst' into
  611. `construction'.  The minus sign is deleted at this point, by `M-''. 
  612. The resulting text is the desired `reconstruction'.
  613.  
  614.    If you actually want the text of the abbrev in the buffer, rather
  615. than its expansion, insert the following punctuation with `C-q'.  Thus,
  616. `foo C-q -' leaves `foo-' in the buffer.
  617.  
  618.    If you expand an abbrev by mistake, you can undo the expansion
  619. (replace the expansion by the original abbrev text) with `M-x
  620. unexpand-abbrev'.  You can also use `C-_' (`undo') to undo the
  621. expansion; but that will first undo the insertion of the punctuation
  622. character.
  623.  
  624.    `M-x expand-region-abbrevs' searches through the region for defined
  625. abbrevs, and  offers to replace each one it finds with its expansion. 
  626. This command is useful if you have typed text using abbrevs but forgot
  627. to turn on Abbrev mode first.  It may also be useful together with a
  628. special set of abbrev definitions for making several global
  629. replacements at once.  The command is effective even if Abbrev mode is
  630. not enabled.
  631.  
  632. 
  633. File: emacs,  Node: Editing Abbrevs,  Next: Saving Abbrevs,  Prev: Expanding Abbrevs,  Up: Abbrevs
  634.  
  635. Examining and Editing Abbrevs
  636. =============================
  637.  
  638. `M-x list-abbrevs'
  639.      Print a list of all abbrev definitions.
  640.  
  641. `M-x edit-abbrevs'
  642.      Edit a list of abbrevs; you can add, alter or remove definitions.
  643.  
  644.    The output from `M-x list-abbrevs' looks like this:
  645.  
  646.      (lisp-mode-abbrev-table)
  647.      "dk"           0    "define-key"
  648.      (global-abbrev-table)
  649.      "dfn"           0    "definition"
  650.  
  651. (Some blank lines of no semantic significance, and some other abbrev
  652. tables, have been omitted.)
  653.  
  654.    A line containing a name in parentheses is the header for abbrevs
  655. in a particular abbrev table; `global-abbrev-table' contains all the
  656. global abbrevs, and the other abbrev tables that are named after major
  657. modes contain the mode-specific abbrevs.
  658.  
  659.    Within each abbrev table, each non-blank line defines one abbrev. 
  660. The word at the beginning is the abbrev.  The number that appears is
  661. the number of times the abbrev has been expanded.  Emacs keeps track
  662. of this to help you see which abbrevs you actually use, in case you
  663. want to eliminate those that you don't use often.  The string at the
  664. end of the line is the expansion.
  665.  
  666.    `M-x edit-abbrevs' allows you to add, change or kill abbrev
  667. definitions by editing a list of them in an Emacs buffer.  The list has
  668. the format described above.  The buffer of abbrevs is called
  669. `*Abbrevs*', and is in Edit-Abbrevs mode.  This mode redefines the key
  670. `C-c C-c' to install the abbrev definitions as specified in the
  671. buffer.  The  `edit-abbrevs-redefine' command does this.  Any abbrevs
  672. not described in the buffer are eliminated when this is done.
  673.  
  674.    `edit-abbrevs' is actually the same as `list-abbrevs' except that
  675. it selects the buffer `*Abbrevs*' whereas `list-abbrevs' merely
  676. displays it in another window.
  677.  
  678. 
  679. File: emacs,  Node: Saving Abbrevs,  Next: Dynamic Abbrevs,  Prev: Editing Abbrevs,  Up: Abbrevs
  680.  
  681. Saving Abbrevs
  682. ==============
  683.  
  684.    These commands allow you to keep abbrev definitions between editing
  685. sessions.
  686.  
  687. `M-x write-abbrev-file'
  688.      Write a file describing all defined abbrevs.
  689.  
  690. `M-x read-abbrev-file'
  691.      Read such an abbrev file and define abbrevs as specified there.
  692.  
  693. `M-x quietly-read-abbrev-file'
  694.      Similar, but do not display a message about what is going on.
  695.  
  696. `M-x define-abbrevs'
  697.      Define abbrevs from buffer.
  698.  
  699. `M-x insert-abbrevs'
  700.      Insert all abbrevs and their expansions into the buffer.
  701.  
  702.    Use `M-x write-abbrev-file' to save abbrev definitions for use in a
  703. later session.  The command reads a file name using the minibuffer and
  704. writes a description of all current abbrev definitions into the
  705. specified file.  The text stored in the file looks like the output of
  706. `M-x list-abbrevs'.
  707.  
  708.    `M-x read-abbrev-file' prompts for a file name using the minibuffer
  709. and reads the specified file, defining abbrevs according to its
  710. contents.  `M-x quietly-read-abbrev-file' is the same but does not
  711. display a message in the echo area; it is actually useful primarily in
  712. the `.emacs' file.  If you give an empty argument to either of these
  713. functions, the file name Emacs uses is the value of the variable
  714. `abbrev-file-name', which is by default `"~/.abbrev_defs"'.
  715.  
  716.    Emacs offers to save abbrevs automatically if you have changed any
  717. of them, whenever it offers to save all files (for `C-x s' or `C-x
  718. C-c').  Set the variable `save-abbrevs' to `nil' to inhibit this
  719. feature.
  720.  
  721.    The commands `M-x insert-abbrevs' and `M-x define-abbrevs' are
  722. similar to the previous commands but work on text in an Emacs buffer. 
  723. `M-x insert-abbrevs' inserts text into the current buffer before point,
  724. describing all current abbrev definitions; `M-x define-abbrevs' parses
  725. the entire current buffer and defines abbrevs accordingly.
  726.  
  727. 
  728. File: emacs,  Node: Dynamic Abbrevs,  Prev: Saving Abbrevs,  Up: Abbrevs
  729.  
  730. Dynamic Abbrev Expansion
  731. ========================
  732.  
  733.    The abbrev facility described above operates automatically as you
  734. insert text, but all abbrevs must be defined explicitly.  By contrast,
  735. "dynamic abbrevs" allow the meanings of abbrevs to be determined
  736. automatically from the contents of the buffer, but dynamic abbrev
  737. expansion happens only when you request it explicitly.
  738.  
  739. `M-/'
  740.      Expand the word in the buffer before point as a "dynamic abbrev",
  741.      by searching in the buffer for words starting with that
  742.      abbreviation (`dabbrev-expand').
  743.  
  744.    For example, if the buffer contains `does this follow ' and you type
  745. `f o M-/', the effect is to insert `follow' because that is the last
  746. word in the buffer that starts with `fo'.  A numeric argument to `M-/'
  747. says to take the second, third, etc. distinct expansion found looking
  748. backward from point.  Repeating `M-/' searches for an alternative
  749. expansion by looking farther back.  After the entire buffer before
  750. point has been considered, the buffer after point is searched.
  751.  
  752.    Dynamic abbrev expansion is completely independent of Abbrev mode;
  753. the expansion of a word with `M-/' is completely independent of
  754. whether it has a definition as an ordinary abbrev.
  755.  
  756. 
  757. File: emacs,  Node: Picture,  Next: Sending Mail,  Prev: Abbrevs,  Up: Top
  758.  
  759. Editing Pictures
  760. ****************
  761.  
  762.    If you want to create a picture made out of text characters (for
  763. example, a picture of the division of a register into fields, as a
  764. comment in a program), use the command `edit-picture' to enter Picture
  765. mode.
  766.  
  767.    In Picture mode, editing is based on the "quarter-plane" model of
  768. text.  In this model, the text characters lie studded on an area that
  769. stretches infinitely far to the right and downward.  The concept of
  770. the end of a line does not exist in this model; the most you can say
  771. is where the last non-blank character on the line is found.
  772.  
  773.    Of course, Emacs really always considers text as a sequence of
  774. characters, and lines really do have ends.  But in Picture mode most
  775. frequently-used keys are rebound to commands that simulate the
  776. quarter-plane model of text.  They do this by inserting spaces or by
  777. converting tabs to spaces.
  778.  
  779.    Most of the basic editing commands of Emacs are redefined by
  780. Picture mode to do essentially the same thing but in a quarter-plane
  781. way.  In addition, Picture mode defines various keys starting with the
  782. `C-c' prefix to run special picture editing commands.
  783.  
  784.    One of these keys, `C-c C-c', is pretty important.  Often a picture
  785. is part of a larger file that is usually edited in some other major
  786. mode.  `M-x edit-picture' records the name of the previous major mode. 
  787. You can then use the `C-c C-c' command (`picture-mode-exit') to
  788. restore that mode.  `C-c C-c' also deletes spaces from the ends of
  789. lines, unless you give it a numeric argument.
  790.  
  791.    The commands used in Picture mode all work in other modes (provided
  792. the `picture' library is loaded), but are only  bound to keys in
  793. Picture mode.  Note that the descriptions below talk of moving "one
  794. column" and so on, but all the picture mode commands handle numeric
  795. arguments as their normal equivalents do.
  796.  
  797.    Turning on Picture mode calls the value of the variable
  798. `picture-mode-hook' as a function, with no arguments, if that value
  799. exists and is non-`nil'.
  800.  
  801. * Menu:
  802.  
  803. * Basic Picture::         Basic concepts and simple commands of Picture Mode.
  804. * Insert in Picture::     Controlling direction of cursor motion
  805.                            after "self-inserting" characters.
  806. * Tabs in Picture::       Various features for tab stops and indentation.
  807. * Rectangles in Picture:: Clearing and superimposing rectangles.
  808.  
  809. 
  810. File: emacs,  Node: Basic Picture,  Next: Insert in Picture,  Prev: Picture,  Up: Picture
  811.  
  812. Basic Editing in Picture Mode
  813. =============================
  814.  
  815.    Most keys do the same thing in Picture mode that they usually do,
  816. but do it in a quarter-plane style.  For example, `C-f' is rebound to
  817. run `picture-forward-column', which moves point one column to the
  818. right, by inserting a space if necessary, so that the actual end of the
  819. line makes no difference.  `C-b' is rebound to run
  820. `picture-backward-column', which always moves point left one column,
  821. converting a tab to multiple spaces if necessary.  `C-n' and `C-p' are
  822. rebound to run `picture-move-down' and `picture-move-up', which can
  823. either insert spaces or convert tabs as necessary to make sure that
  824. point stays in exactly the same column.  `C-e' runs
  825. `picture-end-of-line', which moves to after the last non-blank
  826. character on the line.  There was no need to change `C-a', as the
  827. choice of screen model does not affect beginnings of lines.
  828.  
  829.    Insertion of text is adapted to the quarter-plane screen model
  830. through the use of Overwrite mode (*note Minor Modes::.). 
  831. Self-inserting characters replace existing text, column by column,
  832. rather than pushing existing text to the right.  RET runs
  833. `picture-newline', which just moves to the beginning of the following
  834. line so that new text will replace that line.
  835.  
  836.    Text is erased instead of deleted and killed.  DEL
  837. (`picture-backward-clear-column') replaces the preceding character
  838. with a space rather than removing it.  `C-d' (`picture-clear-column')
  839. does the same in a forward direction.  `C-k' (`picture-clear-line')
  840. really kills the contents of lines, but never removes the newlines
  841. from a buffer.
  842.  
  843.    To do actual insertion, you must use special commands.  `C-o'
  844. (`picture-open-line') creates a blank line, but does so after the
  845. current line; it never splits a line.  `C-M-o', `split-line', makes
  846. sense in Picture mode, so it remains unchanged.  LFD
  847. (`picture-duplicate-line') inserts another line with the same contents
  848. below the current line.
  849.  
  850.    To actually delete parts of the picture, use `C-w', or with `C-c
  851. C-d' (which is defined as `delete-char', as `C-d' is in other modes),
  852. or with one of the picture rectangle commands (*note Rectangles in
  853. Picture::.).
  854.  
  855. 
  856. File: emacs,  Node: Insert in Picture,  Next: Tabs in Picture,  Prev: Basic Picture,  Up: Picture
  857.  
  858. Controlling Motion after Insert
  859. ===============================
  860.  
  861.    Since "self-inserting" characters just overwrite and move point in
  862. Picture mode, there is no essential restriction on how point should be
  863. moved.  Normally point moves right, but you can specify any of the
  864. eight orthogonal or diagonal directions for motion after a
  865. "self-inserting" character.  This is useful for drawing lines in the
  866. buffer.
  867.  
  868. `C-c <'
  869.      Move left after insertion (`picture-movement-left').
  870.  
  871. `C-c >'
  872.      Move right after insertion (`picture-movement-right').
  873.  
  874. `C-c ^'
  875.      Move up after insertion (`picture-movement-up').
  876.  
  877. `C-c .'
  878.      Move down after insertion (`picture-movement-down').
  879.  
  880. `C-c `'
  881.      Move up and left ("northwest") after insertion 
  882.      (`picture-movement-nw').
  883.  
  884. `C-c ''
  885.      Move up and right ("northeast") after insertion 
  886.       (`picture-movement-ne').
  887.  
  888. `C-c /'
  889.      Move down and left ("southwest") after insertion 
  890.      (`picture-movement-sw').
  891.  
  892. `C-c \'
  893.      Move down and right ("southeast") after insertion 
  894.      (`picture-movement-se').
  895.  
  896.    Two motion commands move based on the current Picture insertion
  897. direction.  The command `C-c C-f' (`picture-motion') moves in the same
  898. direction as motion after "insertion" currently does, while `C-c C-b'
  899. (`picture-motion-reverse') moves in the opposite direction.
  900.  
  901. 
  902. File: emacs,  Node: Tabs in Picture,  Next: Rectangles in Picture,  Prev: Insert in Picture,  Up: Picture
  903.  
  904. Picture Mode Tabs
  905. =================
  906.  
  907.    Two kinds of tab-like action are provided in Picture mode. 
  908. Context-based tabbing is done with `M-TAB' (`picture-tab-search'). 
  909. With no argument, it moves to a point underneath the next
  910. "interesting" character that follows whitespace in the previous
  911. non-blank line.  "Next" here means "appearing at a horizontal position
  912. greater than the one point starts out at".  With an argument, as in
  913. `C-u M-TAB', the command moves to the next such interesting character
  914. in the current line.  `M-TAB' does not change the text; it only moves
  915. point.  "Interesting" characters are defined by the variable
  916. `picture-tab-chars', which contains a string of characters considered
  917. interesting.  Its default value is `"!-~"'.
  918.  
  919.    TAB itself runs `picture-tab', which operates based on the current
  920. tab stop settings; it is the Picture mode equivalent of
  921. `tab-to-tab-stop'.  Without arguments it just moves point, but with a
  922. numeric argument it clears the text that it moves over.
  923.  
  924.    The context-based and tab-stop-based forms of tabbing are brought
  925. together by the command `C-c TAB', `picture-set-tab-stops'.  This
  926. command sets the tab stops to the positions which `M-TAB' would
  927. consider significant in the current line.  If you use this command,
  928. together with TAB, you can get the effect of context-based tabbing. 
  929. But `M-TAB' is more convenient in the cases where it is sufficient.
  930.  
  931. 
  932. File: emacs,  Node: Rectangles in Picture,  Prev: Tabs in Picture,  Up: Picture
  933.  
  934. Picture Mode Rectangle Commands
  935. ===============================
  936.  
  937.    Picture mode defines commands for working on rectangular pieces of
  938. the text in ways that fit with the quarter-plane model.  The standard
  939. rectangle commands may also be useful (*note Rectangles::.).
  940.  
  941. `C-c C-k'
  942.      Clear out the region-rectangle (`picture-clear-rectangle').  With
  943.      argument, kill it.
  944.  
  945. `C-c C-w R'
  946.      Similar but save rectangle contents in register R first
  947.      (`picture-clear-rectangle-to-register').
  948.  
  949. `C-c C-y'
  950.      Copy last killed rectangle into the buffer by overwriting, with
  951.      upper left corner at point (`picture-yank-rectangle').  With
  952.      argument, insert instead.
  953.  
  954. `C-c C-x R'
  955.      Similar, but use the rectangle in register R
  956.       (`picture-yank-rectangle-from-register').
  957.  
  958.    The picture rectangle commands `C-c C-k'
  959. (`picture-clear-rectangle') and `C-c C-w'
  960. (`picture-clear-rectangle-to-register') differ from the standard
  961. rectangle commands in that they normally clear the rectangle instead of
  962. deleting it; this is analogous with the way `C-d' is changed in Picture
  963. mode.
  964.  
  965.    However, deletion of rectangles can be useful in Picture mode, so
  966. these commands delete the rectangle if given a numeric argument.
  967.  
  968.    The Picture mode commands for yanking rectangles differ from the
  969. standard ones in overwriting instead of inserting.  This is the same
  970. way that Picture mode insertion of other text is different from other
  971. modes.  `C-c C-y' (`picture-yank-rectangle') inserts (by overwriting)
  972. the rectangle that was most recently killed, while `C-c C-x'
  973. (`picture-yank-rectangle-from-register') does for the rectangle found
  974. in a specified register.
  975.  
  976. 
  977. File: emacs,  Node: Sending Mail,  Next: Rmail,  Prev: Picture,  Up: Top
  978.  
  979. Sending Mail
  980. ************
  981.  
  982.    To send a message in Emacs, start by typing the command (`C-x m')
  983. to select and initialize the `*mail*' buffer.  You can then edit the
  984. text and headers of the message in the mail buffer, and type the
  985. command (`C-c C-c') to send the message.
  986.  
  987. `C-x m'
  988.      Begin composing a message to send (`mail').
  989.  
  990. `C-x 4 m'
  991.      Likewise, but display the message in another window
  992.      (`mail-other-window').
  993.  
  994. `C-c C-c'
  995.      In Mail mode, send the message and switch to another buffer
  996.      (`mail-send-and-exit').
  997.  
  998.    The command `C-x m' (`mail') selects a buffer named `*mail*' and
  999. initializes it with the skeleton of an outgoing message.  `C-x 4 m'
  1000. (`mail-other-window') selects the `*mail*' buffer in a different
  1001. window, leaving the previous current buffer visible.
  1002.  
  1003.    Because the buffer for mail composition is an ordinary Emacs
  1004. buffer, you can switch to other buffers while in the middle of
  1005. composing mail, and switch back later (or never).  If you use the `C-x
  1006. m' command again when you have been composing another message but have
  1007. not sent it, a new mail buffer will be created; in this way, you can
  1008. compose multiple messages at once.  You can switch back to and
  1009. complete an unsent message by using the normal buffer selection
  1010. mechanisms.
  1011.  
  1012.    `C-u C-x m' is another way to switch back to a message in progress:
  1013. it will search for an existing, unsent mail message buffer and select
  1014. it.
  1015.  
  1016. * Menu:
  1017.  
  1018. * Format: Mail Format.    Format of the mail being composed.
  1019. * Headers: Mail Headers.  Details of allowed mail header fields.
  1020. * Mode: Mail Mode.        Special commands for editing mail being composed.
  1021.  
  1022. 
  1023. File: emacs,  Node: Mail Format,  Next: Mail Headers,  Prev: Sending Mail,  Up: Sending Mail
  1024.  
  1025. The Format of the Mail Buffer
  1026. =============================
  1027.  
  1028.    In addition to the "text" or contents, a message has "header
  1029. fields" which say who sent it, when, to whom, why, and so on.  Some
  1030. header fields such as the date and sender are created automatically
  1031. after the message is sent.  Others, such as the recipient names, must
  1032. be specified by you in order to send the message properly.
  1033.  
  1034.    Mail mode provides a few commands to help you edit some header
  1035. fields, and some are preinitialized in the buffer automatically at
  1036. times.  You can insert or edit any header fields using ordinary
  1037. editing commands.
  1038.  
  1039.    The line in the buffer that says
  1040.  
  1041.      --text follows this line--
  1042.  
  1043. is a special delimiter that separates the headers you have specified
  1044. from the text.  Whatever follows this line is the text of the message;
  1045. the headers precede it.  The delimiter line itself does not appear in
  1046. the message actually sent.  The text used for the delimiter line is
  1047. controlled by the variable `mail-header-separator'.
  1048.  
  1049.    Here is an example of what the headers and text in the `*mail*'
  1050. buffer might look like.
  1051.  
  1052.      To: rms@mc
  1053.      CC: mly@mc, rg@oz
  1054.      Subject: The Emacs Manual
  1055.      --Text follows this line--
  1056.      Please ignore this message.
  1057.  
  1058.